home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / testvb.zip / MAIN.H < prev    next >
C/C++ Source or Header  |  1995-11-02  |  772b  |  37 lines

  1. //-------------------------------------------------------------------
  2.  
  3. // MAIN.H
  4.  
  5. // Copyright (c) 1995 by Golden Gate Software
  6.  
  7. // Written by:
  8. //    Richard D. Kligman
  9. //    3825 Baker Street
  10. //    San Diego, CA  92117-5706
  11. //    (619) 483-8496
  12. //    FAX: (619) 483-4651
  13. //    CompuServe: 75300,2530
  14.  
  15. //-------------------------------------------------------------------
  16.  
  17. #ifndef  GGS_VB_MAIN_H
  18. #define  GGS_VB_MAIN_H
  19.  
  20. class MyClass
  21. {
  22. public:
  23.    MyClass();
  24.    ~MyClass();
  25.  
  26.    // Take two strings and make a third concatonated string
  27.    void AddStrings(const char* strA, const char* strB, char* newStr, int len);
  28. };
  29.  
  30.  
  31. extern "C" {
  32.    void _export PASCAL AddStrings(const char* strA, const char* strB, char* newStr, int len);
  33. }
  34.  
  35.  
  36. #endif
  37.